The GrpClient object is the main interface for most GRP scripting tasks. Declare the object using the following code:
|
CreateObject("CxGrp.GrpClient") |
Each method in this document will assume you have declared and connected the GrpClient object using the following code.
|
Dim GrpClient Set GrpClient = CreateObject("CxGrp.GrpClient") GrpClient.Connect("CYGDEMO.GRP") |
Note: The GroupNodes object is already created and provided in CygNet Studio as the global GroupNodes object.
More: